home *** CD-ROM | disk | FTP | other *** search
- #
- # DEMO
- #
- # (c)1998-1999 TealPoint Software All Rights Reserved
- #
- # This sample Folio showing many object on screen
- #
-
- #
- # A Password object. The key is "foobar", which may be entered to
- # remove the reminder from popping up whenever you start the folio.
- # Since the LOCKOUT style flag is not also used, you can still enter
- # the folio without entering the key.
-
- PASSWORD
- KEY foobar
- STYLE REGISTER
- # STYLE LOCKOUT
- TEXT "Enter your the key 'foobar' to remove this message or just 'OK' to continue."
-
- #
- # A GOTO button without a target functions as a close button
- #
-
- GOTO
- BX 120
- BY 2
- BW 35
- BH 14
- BTEXT "Done"
- #
- # A GOTO button used to go to another folio.
- #
-
- GOTO
- BX 82
- BY 2
- BW 35
- BH 14
- BTEXT "Metric"
- TARGET "Metric Converter"
-
- #
- # A Text resource to hold a TEXT field for one or more other objects
- #
-
- TRES list_text
- TEXT
- "Lodging"
- ">Hotels"
- ">>Cheap"
- ">>Moderate"
- ">>Fancy"
- ">B and b's"
- "Food"
- ">American"
- ">British"
- ">French"
- ">Mexican"
- ">Spanish"
- ">Yugoslavian"
- "Transportation"
- ">Taxis"
- ">Railroads"
- ">Car Rental"
-
- #
- # Another Text Resource
- #
-
- TRES list_text2
- TEXT "TextRes 2"
-
- #
- # A Label
- #
-
- LABEL
- X 1
- Y 1
- FONT 1
- STYLE INVERTED
- TEXT "Demo Folio"
-
- #
- # A multi-column table list with quoted text and various alignment options
- # Note the use of embedded quotation marks in entries of the table
- #
-
- LIST
- X 0
- Y 90
- W 78
- H 68
- TABS 30 50
- STYLE HORIZ_RULE VERT_RULE BOLD_BORDER ALIGN_CENTER ALIGN_RIGHT_END
- TEXT
- """Q""" "A" "B"
- "Line 2" "A" "B"
- "Line 3" "A" "B"
- "Line 4" "A" "B"
- "Line 5" "A" "B"
- "Line 6" """A""" "B"
- "Line 7" "A" "B"
- "Line 8" "A" "B"
- "Line 9" "A" "B"
- "Line 10" "A" "B"
- "Line 11" "A" "B"
- "Line 12" "A" "B"
- "Line 13" "A" "B"
- "Line 14" "A" "B"
-
- #
- # An expanding outline object
- #
-
- OUTLINE
- X 81
- Y 20
- W 78
- H 68
- FONT 0
- TEXT @list_text
-
-
- #
- # A Popup List
- #
-
- POPLIST speed_list
- X 10
- Y 20
- W 40
- H 80
- BX 5
- BY 30
- BW 40
- BH 15
- STYLE BOLD_BORDER
- TEXT
- "Off"
- "Low"
- "Med"
- "High"
- "Turbo"
-
- #
- # A Checkmark object, whose text is linked to the 'speed_list' object
- #
-
- CHECKMARK
- X 5
- Y 15
- W 80
- H 15
- LINKS speed_list
- TEXT "Checkmark1"
- TEXT "Checkmark2"
- TEXT "Checkmark3"
- TEXT "Checkmark4"
-
- #
- # An Image object that cycles through four different images from
- # the 'DemoPics' image database.
- #
-
- IMAGE
- X 81
- Y 90
- W 78
- H 68
- SX 0
- SY 0
- RECORD 0
- DATABASE "DemoPics"
- CYCLE 4
- DELAY 10
-
- #
- # Some simple cycling text, running at 10 frames per second
- #
-
- WINDOW
- W 40
- H 15
- X 5
- Y 68
- STYLE NO_BORDER
- CYCLE 9
- TEXT "The"
- TEXT "quick"
- TEXT "brown"
- TEXT "fox"
- TEXT "jumped"
- TEXT "over"
- TEXT "the"
- TEXT "lazy"
- TEXT "dog."
- DELAY 1
-
- #
- # The About Popup Window
- #
-
- POPWINDOW
- X 10
- Y 20
- W 140
- H 120
- BX 5
- BY 50
- BW 40
- BH 15
- STYLE BOLD_BORDER
- BTEXT "About"
- TEXT
- "This folio demonstrates a number of screen objects " \
- "for TealInfo."
- ""
- "It demonstrates a number of features, including all the UI "\
- "objects and a how they link together to create simple "\
- "application."
-